home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Nets & Comm / Transition Queue Watcher / makefile < prev    next >
Encoding:
Makefile  |  1992-01-30  |  2.4 KB  |  76 lines  |  [TEXT/MPS ]

  1. #
  2. #    Apple Macintosh Developer Technical Support
  3. #
  4. #    MultiFinder-Aware Simple TextEdit Sample Application
  5. #
  6. #    ATQWatcher
  7. #
  8. #    [P]ATQWatcher.make    -    Make Source
  9. #
  10. #    Copyright © Apple Computer, Inc. 1989-1990
  11. #    All rights reserved.
  12. #
  13. #    Versions:    
  14. #                1.00                08/88
  15. #                1.01                11/88
  16. #                1.02                04/89    MPW 3.1
  17. #                1.03                02/90    MPW 3.2
  18. #
  19. #    Components:
  20. #                ATQWatcher.p            Feb.  1, 1990
  21. #                ATQWatcherGlue.a        Feb.  1, 1990
  22. #                ATQWatcher.r            Feb.  1, 1990
  23. #                ATQWatcher.h            Feb.  1, 1990
  24. #                ATQCGlue.c                Feb.  1, 1990
  25. #                makefile                Feb.  1, 1990
  26. #
  27. #    ATQWatcher is an example application that demonstrates how 
  28. #    to initialize the commonly used toolbox managers, operate 
  29. #    successfully under MultiFinder, handle desk accessories and 
  30. #    create, grow, and zoom windows. The fundamental TextEdit 
  31. #    toolbox calls and TextEdit autoscroll are demonstrated. It 
  32. #    also shows how to create and maintain scrollbar controls.
  33. #
  34. #    It does not by any means demonstrate all the techniques you 
  35. #    need for a large application. In particular, Sample does not 
  36. #    cover exception handling, multiple windows/documents, 
  37. #    sophisticated memory management, printing, or undo. All of 
  38. #    these are vital parts of a normal full-sized application.
  39. #
  40. #    This application is an example of the form of a Macintosh 
  41. #    application; it is NOT a template. It is NOT intended to be 
  42. #    used as a foundation for the next world-class, best-selling, 
  43. #    600K application. A stick figure drawing of the human body may 
  44. #    be a good example of the form for a painting, but that does not 
  45. #    mean it should be used as the basis for the next Mona Lisa.
  46. #
  47. #    We recommend that you review this program or Sample before 
  48. #    beginning a new application. Sample is a simple app. which doesn’t 
  49. #    use TextEdit or the Control Manager.
  50. #
  51. #     You can define {SymOptions} as "-sym on" or "-sym off" for use with SADE
  52. POptions = {SymOptions}
  53.  
  54. PObjs    =    ATQWatcher.p.o ∂
  55.             ATQWatcherGlue.a.o ∂
  56.             ATQCGlue.c.o ∂
  57.             TransQueue.p.o ∂
  58.             "{Libraries}"Runtime.o ∂
  59.             "{Libraries}"Interface.o ∂
  60.             "{PLibraries}"PasLib.o
  61.  
  62. ATQWatcher        ƒƒ {PObjs} makefile
  63.             Link -o {Targ} {PObjs} {SymOptions}
  64.             SetFile {Targ} -t APPL -c 'MOOT' -a B
  65.  
  66. ATQWatcher        ƒƒ ATQWatcher.r ATQWatcher.h makefile
  67.             Rez -rd -append -o {Targ} ATQWatcher.r
  68.  
  69. ATQWatcher.p.o    ƒƒ ATQWatcher.p makefile
  70.  
  71. ATQWatcherGlue.a.o ƒƒ ATQWatcherGlue.a makefile
  72.  
  73. TransQueue.p.o ƒƒ TransQueue.p makefile
  74.  
  75. ATQCGlue.c.o ƒƒ ATQCGlue.c makefile
  76.